home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tools / jade / lisp / autoload.jl < prev    next >
Lisp/Scheme  |  1995-03-09  |  3KB  |  75 lines

  1. ;;;; autoload.jl -- Initialise auto-load functions
  2. ;;;  Copyright (C) 1993, 1994 John Harper <jsh@ukc.ac.uk>
  3.  
  4. ;;; This file is part of Jade.
  5.  
  6. ;;; Jade is free software; you can redistribute it and/or modify it
  7. ;;; under the terms of the GNU General Public License as published by
  8. ;;; the Free Software Foundation; either version 2, or (at your option)
  9. ;;; any later version.
  10.  
  11. ;;; Jade is distributed in the hope that it will be useful, but
  12. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. ;;; GNU General Public License for more details.
  15.  
  16. ;;; You should have received a copy of the GNU General Public License
  17. ;;; along with Jade; see the file COPYING.  If not, write to
  18. ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. ;;; ::autoload-start::
  21. (autoload 'add-change-log-entry "add-log" t)
  22. (autoload 'yes-or-no-p "ask")
  23. (autoload 'y-or-n-p "ask")
  24. (autoload 'asm-mode "asm-mode" t)
  25. (autoload 'asm-cpp-mode "asm-mode" t)
  26. (autoload 'buffer-menu "buffer-menu" t)
  27. (autoload 'c-mode "c-mode" t)
  28. (autoload 'c-backslash-area "c-mode" t)
  29. (autoload 'c-insert-comment "c-mode" t)
  30. (autoload 'start-compile-command "compile")
  31. (autoload 'compile "compile" t)
  32. (autoload 'next-error "compile" t)
  33. (autoload 'grep "compile" t)
  34. (autoload 'grep-buffer "compile" t)
  35. (autoload 'compile-file "compiler" t)
  36. (autoload 'compile-directory "compiler" t)
  37. (autoload 'compile-lisp-lib "compiler" t)
  38. (autoload 'compile-form "compiler")
  39. (autoload 'debug-entry "debug")
  40. (autoload 'debug-error-entry "debug")
  41. (autoload 'disassemble-fun "disassembler" t)
  42. (autoload 'fill-mode "fill-mode" t)
  43. (autoload 'fill-mode-on "fill-mode" t)
  44. (autoload 'set-fill-column "fill-mode" t)
  45. (autoload 'add-autoloads "find-autoloads" t)
  46. (autoload 'remove-autoloads "find-autoloads" t)
  47. (autoload 'gdb "gdb" t)
  48. (autoload 'help "help" t)
  49. (autoload 'describe-mode "help" t)
  50. (autoload 'documentation "help")
  51. (autoload 'document-var "help")
  52. (autoload 'info "info" t)
  53. (autoload 'isearch-forward "isearch" t)
  54. (autoload 'isearch-backward "isearch" t)
  55. (autoload 'print-keymap "keymap")
  56. (autoload 'read-event "keymap")
  57. (autoload 'describe-key "keymap" t)
  58. (autoload 'latin-1-mode "latin-1" t)
  59. (autoload 'lisp-mode "lisp-mode" t)
  60. (autoload 'eval-sexp "lisp-mode" t)
  61. (autoload 'eval-insert-sexp "lisp-mode" t)
  62. (autoload 'eval-print-sexp "lisp-mode" t)
  63. (autoload 'replace-all "replace" t)
  64. (autoload 'query-replace "replace" t)
  65. (autoload 'server-open-file "server")
  66. (autoload 'server-close-file "server" t)
  67. (autoload 'shell-mode "shell")
  68. (autoload 'shell "shell" t)
  69. (autoload 'texinfo-mode "texinfo-mode" t)
  70. (autoload 'text-mode "text-mode" t)
  71. (autoload 'indented-text-mode "text-mode" t)
  72. (autoload 'center-line "text-mode" t)
  73. (autoload 'center-paragraph "text-mode" t)
  74. ;;; ::autoload-end::
  75.